Resource leak

In computer science, a resource leak is a particular type of resource consumption by a computer program where the program cannot release resources it has acquired. This condition is normally the result of a bug in a program. Typical resource leaks include memory leak and handle leak.

Examples of resources available in limited numbers to the operating system include: internet sockets, file handles etc.

See also